golang.org/x/net/http2.roundRobinWriteScheduler.head (field)

12 uses

	golang.org/x/net/http2 (current package)
		writesched_roundrobin.go#L23: 	head *writeQueue
		writesched_roundrobin.go#L47: 	if ws.head == nil {
		writesched_roundrobin.go#L48: 		ws.head = q
		writesched_roundrobin.go#L54: 		q.prev = ws.head.prev
		writesched_roundrobin.go#L55: 		q.next = ws.head
		writesched_roundrobin.go#L68: 		ws.head = nil
		writesched_roundrobin.go#L72: 		if ws.head == q {
		writesched_roundrobin.go#L73: 			ws.head = q.next
		writesched_roundrobin.go#L106: 	if ws.head == nil {
		writesched_roundrobin.go#L109: 	q := ws.head
		writesched_roundrobin.go#L112: 			ws.head = q.next
		writesched_roundrobin.go#L116: 		if q == ws.head {